home *** CD-ROM | disk | FTP | other *** search
/ Aminet 31 / Aminet 31 (1999)(Schatztruhe)[!][Jun 1999].iso / Aminet / util / libs / chunky_dev.lha / chunky_dev / Demos / _shared / screen.h < prev    next >
Encoding:
C/C++ Source or Header  |  1999-03-15  |  484 b   |  22 lines

  1. //
  2. // chunky.library examples
  3. // MODULE: screen opening and closing commands
  4. //
  5. // http://www.irrelevant.org/~oondy/chunky/
  6. // Public domain.  (c) 1999 Rosande Limited, all rights reserved.
  7.  
  8. #ifndef DEMO_SCREEN_H
  9. #define DEMO_SCREEN_H
  10.  
  11. #include <exec/types.h>
  12. #include <intuition/intuition.h>
  13.  
  14. extern struct Screen *DemoScreen;
  15. extern struct Window *DemoWindow;
  16.  
  17. BOOL DEMO_OpenScreen(ULONG Width, ULONG Height, ULONG Flags,
  18.  void *ColourTable32);
  19. void DEMO_CloseScreen(void);
  20.  
  21. #endif
  22.